home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / etc / gtty.c < prev    next >
C/C++ Source or Header  |  1989-07-21  |  1KB  |  48 lines

  1. /* 
  2.  * gtty.c --
  3.  *
  4.  *    Source for gtty procedure.
  5.  *
  6.  * Copyright 1986 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: /sprite/src/lib/c/etc/RCS/gtty.c,v 1.3 88/12/31 12:25:51 ouster Exp $ SPRITE (Berkeley)";
  18. #endif not lint
  19.  
  20. #include <sgtty.h>
  21.  
  22. /*
  23.  *----------------------------------------------------------------------
  24.  *
  25.  * gtty --
  26.  *
  27.  *      Procedure to simulate Unix gtty call.
  28.  *
  29.  * Results:
  30.  *      0 is normally returned.  If an error occurred, -1 is returned
  31.  *    and errno give more details.  Buf is filled in with the
  32.  *    terminal characteristics of fd. 
  33.  *
  34.  * Side effects:
  35.  *    None.
  36.  *
  37.  *----------------------------------------------------------------------
  38.  */
  39.  
  40.  
  41. int
  42. gtty(fd, buf)
  43.     int fd;            /* File descriptor. */
  44.     struct sgttyb *buf;        /* Buffer to hold tty info */
  45. {
  46.     return ioctl(fd, TIOCGETP, buf);
  47. }
  48.